Add support for overriding x tick with non arithmetic progression values - #5262
Add support for overriding x tick with non arithmetic progression values#5262robertoffmoura wants to merge 10 commits into
Conversation
00a6f11 to
128dd25
Compare
128dd25 to
85745d7
Compare
85745d7 to
7701120
Compare
|
Hi @emilykl, Currently, the conversion ignores custom x tick values specified in the matplotlib figure. See the snippet below, which prints Here's a screenshot of the matplotlib figure with custom x tick values: Before this change, the plotly conversion ignores the 0.75 x tick value. After this change, the converted plot correctly shows the 0.75 x tick value. |
b446bfd to
266aae9
Compare
266aae9 to
1ea1d90
Compare
camdecoster
left a comment
There was a problem hiding this comment.
Thanks for the PR! Could you please review my comments and add a CHANGELOG entry?
1ea1d90 to
0b1611a
Compare
camdecoster
left a comment
There was a problem hiding this comment.
Looks good. Before I approve, could you please address the merge conflict?
c2a7f0b to
8e7df2f
Compare
|
Thanks for the review! I rebased and addressed the merge conflict. |



Hi,
This change adds support for specifying tickvals and ticktext when the values don't follow an arithmetic progression, i.e., they're not evenly spaced.
Code PR
plotly.graph_objects, my modifications concern the code generator and not the generated files.